home *** CD-ROM | disk | FTP | other *** search
/ 404 Jogos / CLJG.iso / Puzzle / feednfrenzy.swf / scripts / frame_611 / PlaceObject2_265_94 / CLIPACTIONRECORD onClipEvent(enterFrame).as next >
Text File  |  2008-09-25  |  1KB  |  46 lines

  1. onClipEvent(enterFrame){
  2.    yit = Math.floor(Math.random() * 371) + 30;
  3.    if(this._x < -500)
  4.    {
  5.       this._x = 900;
  6.       this._y = _root.depth._y - yit;
  7.       die = 1;
  8.       this.gotoAndStop(1);
  9.    }
  10.    if(this._x > 1000)
  11.    {
  12.       this._x = -400;
  13.       this._y = _root.depth._y - yit;
  14.       die = 1;
  15.       this.gotoAndStop(1);
  16.    }
  17.    this._x += _global.xgo;
  18.    this._y += _global.ygo;
  19.    if(die == 1)
  20.    {
  21.       myRadians = Math.atan2(this._y - _root.player._y,this._x - _root.player._x);
  22.       xleg = this._x - _root.player._x;
  23.       yleg = this._y - _root.player._y;
  24.       scared = Math.sqrt(xleg * xleg + yleg * yleg);
  25.       if(scared < 50)
  26.       {
  27.          this._y -= 1;
  28.       }
  29.       this._x -= 4;
  30.    }
  31.    if(_root.player.eat.hitTest(this.eat))
  32.    {
  33.       die = 0;
  34.       reat = new Sound();
  35.       reat.attachSound("eatit1");
  36.       reat.start(0,1);
  37.       this.gotoAndPlay("die");
  38.       scoreity = 200;
  39.       _root.tools.instascore.text = "+" + scoreity;
  40.       _root.tools.instblock._alpha = 0;
  41.       _global.scoreit = _global.scoreit * 1 + scoreity;
  42.       _global.boost += scoreity / 30;
  43.       _root.tools.bar1.gotoAndStop(_global.boost + 1);
  44.    }
  45. }
  46.